Created
February 16, 2018 21:25
-
-
Save stefanledin/ba35f6545aaa33ebbaef49030bce0c2c 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: './resources/js/app.js', | |
| output: { | |
| filename: './public/javascripts/bundle.js', | |
| }, | |
| resolve: { | |
| alias: { | |
| 'vue$': 'vue/dist/vue.esm.js' | |
| }, | |
| extensions: ['*', '.js', '.vue', '.json'] | |
| }, | |
| 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