Sha256: 7b1a48f8b74fb728bdaa47faf34a84387bf4f93eb7e409d0b1d35edab4cbb2b2
Contents?: true
Size: 467 Bytes
Versions: 10
Compression:
Stored size: 467 Bytes
Contents
# How-Tos ## Ignoring swap files If you are using vim or emacs and want to ignore certain files you can add `ignore-loader`: ``` yarn add ignore-loader ``` and add `ignore-loader` to `config/webpack/environment.js` ```js // ignores vue~ swap files const { environment } = require('@rails/webpacker') environment.loaders.set('ignore', { test: /.vue~$/, loader: 'ignore-loader' }) ``` And now all files with `.vue~` will be ignored by the webpack compiler.
Version data entries
10 entries across 10 versions & 3 rubygems