Skip to content

dohomi/now-nuxt

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

now-nuxt

A Now v2 Nuxt builder.

Usage

Add it to your now.json as:

{
  "builds": [
    { "src": "nuxt.config.js", "use": "@bluebeel/nuxt" }
  ]
}

You have to modify your nuxt.config.js file and customize the build property

build:  {
      filenames: {
        app: '[name].js',
        chunk: '[name].js'
      }
}

And don't forget to change the way the configuration is returned. The default nuxt.config.js is

export default {
  ...
}

Change it to

module.exports = () => {
  return { ... }
}

Example

Simple: https://nuxtjs-v2.now.sh/

Repository of the example.

Hackernews: https://nuxtjs-news-v2.now.sh

Repository of the example.

About

A Now v2 Nuxt builder

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%