# vue-template-pug-remove-indent-loader **Repository Path**: itsheng/vue-template-pug-remove-indent-loader ## Basic Information - **Project Name**: vue-template-pug-remove-indent-loader - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2022-04-17 - **Last Updated**: 2022-07-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## Why See [My PR for Vue](https://github.com/vuejs/vue-next/pull/3842). Since I submitted this PR, no one has dealt with it for more than 3 months. I don't want to wait any longer and decide what to do on my own, so I have this library. ## Use In Webpack Config: ```javascript export default { // ... module: { rules: [ { test: /\.vue$/, use: [ { loader: 'vue-loader', options: { // ... }, }, 'vue-template-pug-remove-indent-loader' ] }, // ... ] } } ``` In vue-cli(`vue.config.js`) or other use `webpack-chain` options: ```javascript chainWebpack(config) { config.module.rule('vue').use('vue-template-pug-remove-indent-loader').loader('vue-template-pug-remove-indent-loader') } ```