Created
August 10, 2017 21:27
-
-
Save RedHatter/dafe47f5cedbc42b395cc3ac43773970 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 = { | |
entry: path.join(__dirname, 'public', 'scripts', 'display.js'), | |
output: { | |
path: path.join(__dirname, 'cache', 'scripts'), | |
publicPath: '/scripts/', | |
filename: 'display.js' | |
}, | |
module: { | |
rules: [ { test: /\.vue$/, loader: 'vue-loader' } ] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment