Created
December 5, 2016 03:43
-
-
Save hyperh/b648437ed380e4e91a31203b1d7e4677 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const path = require('path'); | |
| module.exports = { | |
| publicPath: '/assets/', | |
| assetsPath: path.join(__dirname, '..', 'dist', 'assets'), | |
| commonLoaders: [ | |
| { | |
| test: /\.js$/, | |
| loader: 'babel', | |
| include: path.join(__dirname, '..', 'app'), | |
| exclude: path.join(__dirname, '..', 'node_modules'), | |
| }, | |
| ], | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment