Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/axfab/ax-vue-loader
Simple webpack loader for `*.vue` files
https://github.com/axfab/ax-vue-loader
Last synced: about 2 months ago
JSON representation
Simple webpack loader for `*.vue` files
- Host: GitHub
- URL: https://github.com/axfab/ax-vue-loader
- Owner: AxFab
- Created: 2023-09-28T23:26:35.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-09-28T23:30:19.000Z (over 1 year ago)
- Last Synced: 2023-09-29T01:45:37.067Z (over 1 year ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ax Vue Loader
_Simple webpack loader for `*.vue` files_
This loader compile a Vue file with `` and `<template>` tags.
It allowed for a lighter configuration of the Vue environement and, for me, resolve some configuration nightmare.:Config exemple:
```
{
module: {
rules: [
{ test: /\.vue/, use: [
{ loader: 'ax-vue-loader', options: {
jshint: {
undef: true, esversion: 11,
predef: { axios:true }
}
}}
]}
]
}
}
```