jnwelzel / fluig-bootstrap

Bower/NPM package for Bootstrap-based Fluig styles

Home Page:http://style.fluig.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#Disclaimer This is an unofficial Bower package that simply puts togeter the JavaScript and CSS files found at the Fluig Style Guide page, where you can find more information and documentation.

#Using with Webpack In your webpack.config.js include the following loaders:

{
  test: /\.(png|jpg|gif)$/,
  loader: 'url-loader?limit=8192'
}, {
  test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
  loader: 'url-loader?limit=10000&minetype=application/font-woff'
}, {
  test: /\.(ttf|eot|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
  loader: 'file-loader'
}

Also include the following plugin for loading jQuery:

new webpack.ProvidePlugin({
  $: "jquery",
  jQuery: "jquery"
})

About

Bower/NPM package for Bootstrap-based Fluig styles

http://style.fluig.com/


Languages

Language:JavaScript 74.6%Language:CSS 25.4%