Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 832 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 832 Bytes

parcel-plugin-razor

Parcel plugin to handle Razor templates .cshtml as entry-points.

Install

Using plugins in Parcel could not be any simpler. All you need to do is install them and save in your package.json. Plugins should be named with the prefix parcel-plugin-, e.g. parcel-plugin-foo. Any dependencies listed in package.json with this prefix will be automatically loaded during initialization.

Install with npm:

$ npm install --save parcel-plugin-razor

Install with yarn:

$ yarn add parcel-plugin-razor

Configuration

If you would like to enforce your own asset extension simply create .razor.json or razor.config.js in your project root.

{
    "type": "html" // the output extension of your entry file (default: html)
}