Add linters and pre-commit hook
This commit is contained in:
parent
d8702aa8aa
commit
6e4fec2b55
9 changed files with 2898 additions and 70 deletions
13
config/webpack/resolve.js
Normal file
13
config/webpack/resolve.js
Normal file
|
@ -0,0 +1,13 @@
|
|||
const path = require('path');
|
||||
|
||||
const resolve = {
|
||||
extensions: ['', '.js', '.vue'],
|
||||
alias: {
|
||||
vue$: 'vue/dist/vue.common.js',
|
||||
src: path.resolve('./app/javascript/src'),
|
||||
assets: path.resolve('./app/javascript/src/assets'),
|
||||
components: path.resolve('./app/javascript/src/components'),
|
||||
},
|
||||
};
|
||||
|
||||
module.exports = resolve;
|
Loading…
Add table
Add a link
Reference in a new issue