angular-template-url-loader

2.0.0 • Public • Published

angular-template-url-loader

AngularJS webpack loader that inlines your templates into angular directives and components.

Quick Links

Installation

npm install angular-template-url-loader --save-dev

Usage

webpack.config.js

module.exports = {
  module: {
    rules: [
      {
        test: /\.js$/,
        use: [ 'angular-template-url-loader' ]
      },
      {
        test: /\.html$/, 
        use: [ 'raw-loader' ]
      }
    ]
  }
}

Options

Name Default Description
basePath '' Path to resolve URLs

Requirements

To be able to use the template loader you must have a loader registered, which can handle .html files (for example raw-loader or html-loader).

/angular-template-url-loader/

    Package Sidebar

    Install

    npm i angular-template-url-loader

    Weekly Downloads

    461

    Version

    2.0.0

    License

    MIT

    Unpacked Size

    3.5 kB

    Total Files

    5

    Last publish

    Collaborators

    • maksim-tolo