mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-17 07:50:12 +01:00
Initial commit.
This commit is contained in:
commit
6558ee2fc4
92 changed files with 3193 additions and 0 deletions
19
webpack.config.js
Normal file
19
webpack.config.js
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
/**
|
||||
* @author: @AngularClass
|
||||
*/
|
||||
|
||||
// Look in ./config folder for webpack.dev.js
|
||||
switch (process.env.NODE_ENV) {
|
||||
case 'prod':
|
||||
case 'production':
|
||||
module.exports = require('./config/webpack.prod');
|
||||
break;
|
||||
case 'test':
|
||||
case 'testing':
|
||||
module.exports = require('./config/webpack.test');
|
||||
break;
|
||||
case 'dev':
|
||||
case 'development':
|
||||
default:
|
||||
module.exports = require('./config/webpack.dev');
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue