Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save georgechaduneli/50bd224fb803efe858134c3fba43f33f to your computer and use it in GitHub Desktop.
Save georgechaduneli/50bd224fb803efe858134c3fba43f33f to your computer and use it in GitHub Desktop.
// On PhpStorm, when ussing with laravel mix, for Alias path resolving in components you have to:
// - create a webpack.config.js file separately like:
const path = require('path')
const webpack = require('webpack')
module.exports = {
...
resolve: {
extensions: ['.js', '.json', '.vue'],
alias: {
'~': path.resolve(__dirname, './resources/assets/js')
}
},
...
}
// And then import it in the webpack.mix.js like:
const config = require('./webpack.config')
...
mix.webpackConfig(config)
// Make sure the webpack configuration file is pointed correctly in the configuration of the PhpStorm in: Settings > Languages & Frameworks > Javascript > Webpack
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment