mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-20 21:42:38 +08:00
11 lines
216 B
JavaScript
11 lines
216 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',
|
|
},
|
|
};
|