Creates aliases for pug-plain-loader
npm install -D vue-pug-aliasWith this loader you can create aliases for pug.
Add the following entry to your "webpack.config".
Attention! the path to the alias must start at the root of the project.
{
module: {
rules: [
{
test: /\.pug$/,
loader: 'vue-pug-alias',
options: {
alias: { // A list of your aliases
['@img']: 'src/assets/img',
}
}
}
]
}
}