0.2.3 • Published 10 months ago

@content-collections/vite v0.2.3

Weekly downloads
-
License
-
Repository
-
Last release
10 months ago

title: Vite Integration

  1. Install required packages:

    We have to install the following packages:

    • @content-collections/core
    • @content-collections/vite
    pnpm add -D @content-collections/core @content-collections/vite
  2. Adjust your tsconfig.json:

    {
      "compilerOptions": {
        // ...
        "paths": {
          "content-collections": ["./.content-collections/generated"]
        }
      }
    }

    We require a path alias for the generated files. This is necessary because we will generate the files in the .content-collections/generated folder.

  3. Modify your vite.config.ts:

    import { defineConfig } from "vite";
    import contentCollections from "@content-collections/vite";
    
    export default defineConfig({
     plugins: [/** other plugins */, contentCollections()],
    });

    Add the Content Collections plugin to your Vite config.

0.2.3

10 months ago

0.2.2

10 months ago

0.2.1

1 year ago

0.2.0

1 year ago

0.1.2

1 year ago

0.1.1

1 year ago

0.1.0

1 year ago