aboutsummaryrefslogtreecommitdiff
path: root/packages/integrations/netlify/src/static.ts
blob: 052897de4015866c923effb07d996a4ff1dff70f (plain) (blame)
1
2
3
4
5
6
7
8
import netlifyIntegration from './index.js';

export default function staticIntegration() {
	console.warn(
		'The @astrojs/netlify/static import is deprecated and will be removed in a future release. Please use @astrojs/netlify instead.',
	);
	return netlifyIntegration();
}