Skip to content
Open
Show file tree
Hide file tree
Changes from 9 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
9c7ae44
feat(vite-plugin-nitro): investigate nitro/vite plugin migration
benpsnyder Mar 25, 2026
20b14b0
feat(vite-plugin-nitro)!: migrate to nitro/vite first-party plugin
benpsnyder Mar 25, 2026
d06695e
fix(vite-plugin-nitro): fix renderer config and rollup external forwa…
benpsnyder Mar 25, 2026
f6ca965
fix(vite-plugin-nitro): add closeBundle fallback and fix output path …
benpsnyder Mar 25, 2026
f570b31
fix(vite-plugin-nitro): register bundler sanitization in closeBundle …
benpsnyder Mar 25, 2026
00d8739
fix(vite-plugin-nitro): fix closeBundle prerender and SSR entry resol…
benpsnyder Mar 25, 2026
b2dfcf3
fix(vite-plugin-nitro): replace banned Function type with typed cast
benpsnyder Mar 25, 2026
a0a435e
feat(vite-plugin-nitro): implement prerender route resolution for bui…
benpsnyder Mar 25, 2026
964bd8f
fix(vite-plugin-nitro): sanitize bundler config to resolve Nitro v3 a…
benpsnyder Mar 25, 2026
53ff23e
fix(vite-plugin-nitro): restore buildServer/buildSSR for closeBundle …
benpsnyder Mar 25, 2026
85a6f5a
feat(vite-plugin-nitro): use nitro/vite for dev server, delete legacy…
benpsnyder Mar 25, 2026
d55d93b
feat(vite-plugin-nitro): enhance SSR renderer configuration and entry…
benpsnyder Mar 25, 2026
98888f2
fix: work in progress
benpsnyder Mar 25, 2026
77c446c
fix: nitro vite plugin
benpsnyder Mar 25, 2026
c776864
Merge branch 'alpha' into feat/investigate-nitro-vite-plugin
benpsnyder Mar 25, 2026
5b0635a
fix(vite-plugin-nitro): ensure closeBundle only runs in client enviro…
benpsnyder Mar 25, 2026
c8b3499
refactor: remove unused shipping service SSR configuration
benpsnyder Mar 25, 2026
3d0cb7a
refactor(vite-plugin-nitro): enhance plugin architecture and improve …
benpsnyder Mar 25, 2026
9c1c601
Merge remote-tracking branch 'analogjs/alpha' into feat/investigate-n…
benpsnyder Mar 30, 2026
7e8f808
Merge branch 'alpha' into feat/investigate-nitro-vite-plugin
benpsnyder Mar 31, 2026
1c38270
chore: add patch for srvx@0.11.13 to address promise handling in Node…
benpsnyder Mar 31, 2026
d1eaade
Merge remote-tracking branch 'analogjs/alpha' into feat/investigate-n…
benpsnyder Apr 1, 2026
59c49d5
chore: update dependencies to version 3.0.0-alpha.20 in pnpm-lock.yaml
benpsnyder Apr 1, 2026
05e3f8a
Merge branch 'alpha' into feat/investigate-nitro-vite-plugin
benpsnyder Apr 1, 2026
468f116
Merge branch 'alpha' into feat/investigate-nitro-vite-plugin
benpsnyder Apr 5, 2026
1eef3c7
test(vite-plugin-angular): add test for filtering analogjs plugins in…
benpsnyder Apr 5, 2026
b01cc5b
docs: add PR review and description agent skills
brandonroberts Apr 6, 2026
3a2fe95
docs: add test coverage and build artifact checks to review-pr skill
brandonroberts Apr 6, 2026
af717a8
feat(platform): add generic style-pipeline hooks for community plugin…
benpsnyder Apr 6, 2026
94e110f
chore: release 3.0.0-alpha.26 [skip ci]
semantic-release-bot Apr 6, 2026
a15576d
refactor: retire root tsconfig paths and move workspace linking to pa…
benpsnyder Apr 12, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions packages/vite-plugin-nitro/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
import { nitro } from './lib/vite-plugin-nitro.js';
import { createAnalogNitroPlugins } from './lib/analog-vite-plugin.js';

export { createAnalogNitroPlugins } from './lib/analog-vite-plugin.js';
export { analogNitroModule } from './lib/analog-nitro-module.js';
export { buildNitroConfig } from './lib/nitro-config-factory.js';
export type {
Options,
SitemapConfig,
Expand All @@ -25,4 +29,4 @@ declare module 'nitro/types' {
}
}

export default nitro;
export default createAnalogNitroPlugins;
Loading
Loading