Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 }
}
}}
]}

]
}
}
```