Created a vue project using vue create . command. I am generating my own index.html file using the following configs:
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'index.html',
inject: true,
}),
Now in index.html how I can link a css file? I tried like this but its not working
<link rel="stylesheet" href="~@/assets/custom/styles.css">
How to load the correct path in href?