mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-18 03:23:57 +08:00
11 lines
214 B
JavaScript
11 lines
214 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
mode: 'development',
|
|
entry: path.resolve(__dirname, './src/main.js'),
|
|
output: {
|
|
path: path.resolve(__dirname, './dist'),
|
|
filename: 'bundle.js'
|
|
}
|
|
};
|